home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / NT / CODE / CHAP14 / MTDEMO / MTVIEW.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  420 b   |  20 lines

  1. //***********************************************************************
  2. //
  3. //  MTView.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMTView : public CScrollView
  8. {
  9.     DECLARE_DYNCREATE (CMTView)
  10.  
  11. private:
  12.     CMTDoc* GetDocument () { return (CMTDoc*) m_pDocument; }
  13.  
  14. public:
  15.     virtual void OnInitialUpdate ();
  16.  
  17. protected:
  18.     virtual void OnDraw (CDC*);
  19. };
  20.